.mainPage {
  text-align: center;
  font-weight: bold;
  color: #11101D;
  font-size: 40px;
}

.dashboard-body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 86.1vh; */
}

.dashboard-box {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 0 20px;
  max-width: max-content;
}

.dashboard-box h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  margin-top: 0;
  text-transform: uppercase;
  text-shadow: 0 0 4px #000000;
}


.dashboard-box img {
  max-width: 100%;
  height: auto;
}


.dashboard-box p {
  color: white;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1px;
  text-shadow: 0 0 10px #000000;
}

.dashboard-box button {
  background-color: #5865F2;
  border: none;
  border-radius: 15px;
  width: 30%;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  transition: background-color 0.2s ease-in-out;
}

.dashboard-box button:hover {
  background-color: #1d86db;
}

.dashboard-text {
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  max-width: 600px;
}

.dashboard-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

.dashboard-text p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dashboard-description {
  background-color: #11101D;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.highlight {
  color: goldenrod;
}

.beta {
  color: #fff;
  background: linear-gradient(120deg, rgba(67, 44, 129, 1), rgba(22, 160, 133, 1));
  font-size: 17px;
  font-weight: 350;
  padding: 12px 50px;
  border-radius: 5px;
  transform: translateX(-50%);
  animation: fade 2s infinite;
}

/* Gaming Community TEXT MAIN PAGE */
.gcommunity {
  font-size: 3em;
  font-family: "Tech";
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px rgba(0, 217, 255, 0.8), 0 0 10px rgba(0, 217, 255, 0.6), 0 0 20px rgba(0, 217, 255, 0.4);
  /* animation: flicker 3s infinite; */
}

.gcommunity-logo {
  font-size: 30em;
  margin-bottom: -100px;
  margin-top: -90px;
  font-family: "Lightning";
  color: rgb(255, 255, 255);
  animation: flicker 1s infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.8), 0 0 15px rgba(0, 217, 255, 0.5), 0 0 25px rgba(0, 217, 255, 0.4);
  }
  5% {
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.7), 0 0 15px rgba(0, 217, 255, 0.5), 0 0 25px rgba(0, 217, 255, 0.3);
  }
  10%, 25% {
    opacity: 0.8;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.8), 0 0 22px rgba(0, 217, 255, 0.5), 0 0 32px rgba(0, 217, 255, 0.4);
  }
  15%, 30%, 50% {
    opacity: 0.6;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.7), 0 0 18px rgba(0, 217, 255, 0.4), 0 0 28px rgba(0, 217, 255, 0.2);
  }
  40%, 60% {
    opacity: 0.5;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.6), 0 0 16px rgba(0, 217, 255, 0.3), 0 0 26px rgba(0, 217, 255, 0.1);
  }
  70%, 85% {
    opacity: 0.9;
    text-shadow: 0 0 14px rgba(0, 217, 255, 0.9), 0 0 24px rgba(0, 217, 255, 0.6), 0 0 34px rgba(0, 217, 255, 0.5);
  }
  90% {
    opacity: 0.7;
    text-shadow: 0 0 9px rgba(0, 217, 255, 0.7), 0 0 19px rgba(0, 217, 255, 0.4), 0 0 29px rgba(0, 217, 255, 0.3);
  }
}

.discord-icon-text {
  display: flex;
  align-items: center; /* Centers items vertically */
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}